home *** CD-ROM | disk | FTP | other *** search
/ BBS in a Box 22 / AMUG_22-1.ISO / Files / Internet / Web Things / HTML 101.sit / HTML 101 / HTML 101.rsrc / TEXT_138.txt < prev    next >
Encoding:
Text File  |  1996-03-07  |  1.0 KB  |  47 lines

  1.  
  2. Drill 5
  3.  
  4. ‚Ä¢Open your simpletext document.
  5.  
  6. ‚Ä¢It should look like this:
  7.  
  8. <HTML>
  9. <HEAD>
  10. <TITLE>
  11.  George's Most Excellent Home Page
  12. </TITLE>
  13. </HEAD>
  14. <BODY>
  15. <H1>George's Most Excellent Home Page</H1>
  16. <HR>
  17. <P>
  18. Welcome to my home page!<BR>
  19. It is still in the construction stages but if you bear with me it will someday look COOL!<BR>
  20. Thanks for stopping by.<BR>
  21. <P>
  22. George
  23. </BODY>
  24. </HTML>
  25.  
  26. ‚Ä¢Choose  some text to change the style of and add the tags. This is what I did:
  27.  
  28. <HTML>
  29. <HEAD>
  30. <TITLE>
  31.  George's Most Excellent Home Page
  32. </TITLE>
  33. </HEAD>
  34. <BODY>
  35. <H1>George's Most Excellent Home Page</H1>
  36. <HR>
  37. <P>
  38. <B>Welcome to my home page!</B><BR>     -------> Bold tags
  39. It is still in the construction stages but if you bear with me it will someday look COOL!<BR>
  40. <I>Thanks for stopping by.</I><BR>    ------>Italics tags
  41. <P>
  42. George
  43. </BODY>
  44. </HTML>
  45.  
  46. ‚Ä¢Save the document and then open it with your browser. Make sure that you use the RELOAD ORIGINAL button since the document has changed. You should see the style of the text you selected changed to bold or italics.
  47.